home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / BUSINESS / BAM300.ARJ / GO.BAT < prev    next >
DOS Batch File  |  1991-03-18  |  456b  |  23 lines

  1. echo off
  2. cls
  3. :START
  4. sask "Do you wish to (I)nstall or (R)ead the Readme file first?" ir
  5. if ERRORLEVEL=99 goto DONE
  6. if ERRORLEVEL=2 goto READ
  7. install
  8. readme
  9. goto MORE
  10. :READ
  11. readme
  12. install
  13. :MORE
  14. cls
  15. echo Installation has completed. Please read the documentation or press F1
  16. echo for help within the program itself.
  17. sask "(S)tart Bank Account Manager or (Q)uit?" sq
  18. if ERRORLEVEL=99 goto DONE
  19. if ERRORLEVEL=2 goto DONE
  20. bam
  21. :DONE
  22. echo on
  23.